go/ast.ChanType.Arrow (field)

6 uses

	go/ast (current package)
		ast.go#L474: 		Arrow token.Pos // position of "<-" (token.NoPos if there is no "<-")

	go/parser
		parser.go#L1218: 	return &ast.ChanType{Begin: pos, Arrow: arrow, Dir: dir, Value: value}
		parser.go#L1768: 					p.errorExpected(typ.Arrow, "'chan'")
		parser.go#L1770: 				arrow, typ.Begin, typ.Arrow = typ.Arrow, arrow, arrow

	go/printer
		nodes.go#L1028: 			p.print(token.CHAN, x.Arrow, token.ARROW)